home *** CD-ROM | disk | FTP | other *** search
/ Millennium Gold 2000 / Millennium Gold 2000 - Disc 1.iso / F18NFZ / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-07-19  |  2KB  |  80 lines

  1. @echo off
  2. :: Lets Clear the screen and get to work
  3. cls
  4. :: Setup Memory Variables used by install
  5. Echo Welcome to DOE ENTERTAINMENT (R) (c)1994
  6. Echo Enclosed is F-18 No Fly Zone DOE ENTERTAINMENT(R)
  7. Echo .
  8. if %1.==. GOTO HELP
  9. if %2.==. GOTO HELP
  10. Echo This uncompress all the F-18 No Fly Zone(tm)
  11. Echo .
  12. Echo Files To:
  13. Echo ************* %2\F18NFZ
  14. Echo .
  15. Echo Press Ctrl Break to abort
  16. Echo or
  17. Echo any other key now ... To continue
  18. pause >nul
  19. Echo .
  20. Echo Note:
  21. Echo The file F18NFZ.EXE takes some
  22. Echo time to uncompress.
  23. Echo .
  24. :: Actually start uncompress game files
  25. :: and directory if it does exist
  26. %1GAME.EXE %2\F18NFZ
  27. :: copy the PlayDoe.ini file if there is a windir enviroment varible
  28. if %windir%.==. goto NOWINDIR
  29.  
  30. :: There was a environment variable to copy to
  31. Echo Installing under windows
  32. Echo Copy Default config to Windows Directory
  33. copy %2\F18NFZ\PLAYDOE.INI %windir%
  34. goto HOWTOO
  35.  
  36. :NOWINDIR
  37. :: if there is no windir environment variable then tell user
  38. :: to copy the file..
  39. echo .
  40. echo *************************************************
  41. echo * You must copy the %2\F18NFZ\PLAYDOE.INI file
  42. echo * to your WINDOWS directory.
  43. echo *************************************************
  44. echo .
  45. Echo F18NFZ(tm)
  46. Echo Now Installed in the %2\F18NFZ
  47. echo .
  48. echo Please Run Windows...
  49. goto winrun
  50.  
  51. :HOWTOO
  52. :: Tell User how to run the program
  53. Echo .
  54. Echo F-18 No Fly Zone(tm) Now Installed in the
  55. Echo ********** %2\F18NFZ
  56.  
  57. :WinRun
  58. :: Now That they know how, lets put them there
  59. echo .
  60. echo Choose RUN from the File menu
  61. echo and enter %2\F18NFZ\F18NFZ.EXE
  62. echo .
  63. Echo Press any key to continue
  64. pause>nul
  65. goto END
  66.  
  67. :help
  68. echo F-18 No Fly Zone Installation
  69. echo Game:  F18NFZ(tm)
  70. echo ------------------------------------------------------------------
  71. echo Usage: INSTALL [source:] [destination:]
  72. echo ------------------------------------------------------------------
  73. echo Example:  INSTALL A: C:
  74. echo -
  75. echo - Will install F18NFZ from A: to the C: drive
  76. echo - into the C:\F18NFZ
  77. Echo Press any key to continue
  78. pause >nul
  79. :END
  80.